Add optional parameters fed to git fetch#291
Add optional parameters fed to git fetch#291asteele0 wants to merge 2 commits intojacebrowning:mainfrom
Conversation
|
What additional fetch params did you need in your scenario? I wonder if there's a commonality with clone. |
I needed |
Then perhaps this feature can start by sharing
I think I would rather see those as command-line options passed to |
While they do share some parameters, there are many that they also don't share.
That makes sense to me. Could pass that down to everything applicable, which might make debugging easier. |
I had a scenario where I needed to also specify custom arguments to the
git fetchcommand, in addition togit clone. This wasn't supported, so I've added it as just another YAML option.Pretty much just copied the implementation of
user_paramsin most places.Tests run and all but 3 succeed, which is how many failed when I ran them before these changes.